Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 7407acd

Browse files
authored
Merge pull request #146 from sanjam-deriv/redirect
chore: route change
2 parents d93deda + 3b51782 commit 7407acd

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

docs/code-examples/javascript/ticks/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ We'll start with the ticks example because it's a pretty simple block of code to
2525

2626
A tick is a measure of minimum upward or downward movement in the price of a trading commodity. We subscribe to the ticks functionality from the Deriv API websocket, which will return new tick data every second. As an example you could create an interactive tick graph with this data.
2727

28-
You can find other available calls in the the [API Explorer](/apiexplorer).
28+
You can find other available calls in the the [API Explorer](/api-explorer).

docs/setting-up-a-deriv-application.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ keywords:
1212
- setup
1313
description: How to setup Deriv application
1414
---
15+
1516
:::danger
1617
For the reviewer, Links in this section will be provided in the future.
1718
:::
1819

1920
#### Deriv account
2021

21-
If you don't have a Deriv account yet, you can easily create one by visiting our signup page or using the [new_account_virtual](/apiexplorer#new_account_virtual) API call. It's completely free. And if you have an account already, please log in using your account details. To avoid any accidental loss of funds during testing, we recommend using your demo account instead of a real account.
22+
If you don't have a Deriv account yet, you can easily create one by visiting our signup page or using the [new_account_virtual](/api-explorer#new_account_virtual) API call. It's completely free. And if you have an account already, please log in using your account details. To avoid any accidental loss of funds during testing, we recommend using your demo account instead of a real account.
2223

23-
To earn markup, get a Deriv real account to receive your monthly earnings. You can also create a real account using [new_account_real](/apiexplorer#new_account_real) or [new_account_maltainvest](/apiexplorer#new_account_maltainvest) API calls.
24+
To earn markup, get a Deriv real account to receive your monthly earnings. You can also create a real account using [new_account_real](/api-explorer#new_account_real) or [new_account_maltainvest](/api-explorer#new_account_maltainvest) API calls.
2425

2526
:::caution
2627
To create Deriv applications, you'll need an API token with the Admin scope for the account you wish to use for your application.
@@ -36,7 +37,7 @@ To create a new API token, follow these steps:
3637
2. Provide a name for your token
3738
3. Click **Create**
3839

39-
Alternatively, you can create an API token via the [api_token](/apiexplorer#api_token) API call.
40+
Alternatively, you can create an API token via the [api_token](/api-explorer#api_token) API call.
4041

4142
:::caution
4243
You need a token with the `Admin` scope to create an application.
@@ -46,14 +47,14 @@ You need a token with the `Admin` scope to create an application.
4647

4748
To create your application with the appropriate configuration options, select the **Register Application** tab in the Dashboard. You can make changes to your application's configuration at anytime in the **Manage Applications** tab.
4849

49-
| App information field | Description |
50-
| --------------------- | ----------------------------------------------------------------------------------------- |
51-
| Account | The account you want to create the application with |
52-
| API Token | The API token you want to create the application with |
53-
| App Name | Application name |
54-
| Markup | The commission added to the trade price to earn additional income |
50+
| App information field | Description |
51+
| --------------------- | -------------------------------------------------------------------------------------------------- |
52+
| Account | The account you want to create the application with |
53+
| API Token | The API token you want to create the application with |
54+
| App Name | Application name |
55+
| Markup | The commission added to the trade price to earn additional income |
5556
| Authorisation URL | The URL that enables clients to log in to your app using their Deriv accounts without an API token |
56-
| Verification URL | The OAuth redirect URL for the OAuth authorisation |
57+
| Verification URL | The OAuth redirect URL for the OAuth authorisation |
5758

5859
**To create an application, follow these steps:**
5960

@@ -68,4 +69,4 @@ Make sure the **Authorisation** and **Verification** URLs are correct based on y
6869

6970
For example, if your domain is **`https://example.com`** and your **authorisation and authentication are handled by** `verfiy`, your URLs will be:
7071

71-
**`https://example.com/verify`**
72+
**`https://example.com/verify`**

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const config = {
6565
},
6666
{ to: 'dashboard', label: 'Dashboard', position: 'left' },
6767
{
68-
to: 'apiexplorer',
68+
to: 'api-explorer',
6969
position: 'left',
7070
label: 'API Explorer',
7171
},
File renamed without changes.

0 commit comments

Comments
 (0)