We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea3540 commit 0246080Copy full SHA for 0246080
contributing/development/transferwise.md
@@ -10,7 +10,7 @@ TransferWise integration can be used to automate expense payment as a way to pro
10
11
## Strong Customer Authentication
12
13
-In order to create a new `TRANSFERWISE_PRIVATE_TOKEN` you'll need to generate a new key pair:
+In order to create a new `TRANSFERWISE_PRIVATE_KEY` you'll need to generate a new key pair:
14
15
```text
16
openssl genrsa -out private.pem 2048
@@ -20,7 +20,7 @@ openssl rsa -pubout -in private.pem -out public.pem
20
After that, you can encode the private key using **base64** and save it as an environment variable:
21
22
23
-TRANSFERWISE_PRIVATE_TOKEN=$(cat private.pem | base64 -w 0)
+TRANSFERWISE_PRIVATE_KEY=$(cat private.pem | base64 -w 0)
24
```
25
26
## Developer Sandbox
0 commit comments