Skip to content

Commit e126065

Browse files
Update transition-to-one-platform.md
1 parent 72c01d4 commit e126065

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

docs/app-payments/transition-to-one-platform.md

+13-15
Original file line numberDiff line numberDiff line change
@@ -129,23 +129,17 @@ The payment point was deprecated in 2023 since it won't continue to function as
129129
Find the API spec for the endpoint here: https://developer.mobilepay.dk/api/app-payments#tag/Payments/operation/get-payments-list
130130

131131
### Test options
132-
The new test environment is being prepared for the App Payments facade. We expect to release the first version of this during May. We will update this documentation when the test environment is ready.
132+
The first version of the new test environment is ready for the App Payments facade. All features except Refund is available.
133133

134-
For now you will be able to test the new ePayments API through the merchant test environment on the new platform.
135-
Please note:
136-
1. If you want to reuse your App Payments test data you will need to recreate your test data. Please note that all test data, including payments, refunds, and so on, created before will not be migrated from the sandbox to the merchant test environment.
137-
2. You will also have to integrate with the new and simplified Access Token API designed for the merchant test environment. The old MobilePay-issued API key for the sandbox will cease to function after the launch of Nordic Wallet. [Access token API guide](https://developer.vippsmobilepay.com/docs/APIs/access-token-api/) Prod API keys will continue to work.
134+
#### Test credentials
135+
**Test merchant**: Find a guide to create test merchant [here](https://developer.vippsmobilepay.com/docs/developer-resources/portal/#how-to-create-a-test-sales-unit). The test credentials consist of a client id, client secret and subscriptions key.
136+
**Test user**: Find a guide to create test users [here](https://developer.vippsmobilepay.com/docs/test-environment/#test-users)
137+
*For partners*: Please contact [email protected] to request a DK or FI test merchant and user.
138138

139-
The test environment is called Merchant Test (MT) and is now open for test. MT currently only allows Norwegian phone numbers, currency and merchants, but you can test the API and payment flow. Please see the details of [limitations of the test environment](https://developer.vippsmobilepay.com/docs/test-environment/)
140-
141-
In order to request access to the test environment, please use the following links:
142-
143-
- [Partners](https://www.vippsmobilepay.com/partner/become-a-partner)
144-
- [Merchants](https://vippsmobilepay.com/merchant-test-account-sign-up)
139+
Please note: If you want to reuse your App Payments test data you will need to recreate your test data. Please note that all test data, including payments, refunds, and so on, created on the old platform will not be migrated from the sandbox to the merchant test environment.
145140

146-
We will send you an e-mail with the information you need to get started. This is also needed even though you are an existing MobilePay integrator or merchant, since we need your information registered on our new joint platform.
141+
**Authentication** You will have to integrate with the new and simplified Access Token API designed for the merchant test environment. The old MobilePay-issued API key for the sandbox will cease to function. [Access token API guide](https://developer.vippsmobilepay.com/docs/APIs/access-token-api/) Prod API keys will continue to work.
147142

148-
<!---
149143
#### UserSimulation endpoint
150144
The request to the userSimulation endpoint will be simplified.
151145
```bash title="Old MobilePay request"
@@ -162,12 +156,16 @@ curl https://api.sandbox.mobilepay.dk/v1/integration-test/payments/{paymentid}/r
162156
For the new setup you will not need to supply a userId or paymentSourceId but instead a phoneNumber. When registering for test access on the new platform you will receive a new test phoneNumber
163157

164158
```bash title="New Vipps MobilePay request"
165-
curl xxx/v1/integration-test/payments/{PAYMENT_ID}/reserve \
159+
curl https://api.sandbox.mobilepay.dk/v1/integration-test/payments/{PAYMENT_ID}/reserve \
166160
-X POST \
167161
-H 'Authorization: Bearer {API_KEY or JWT}' \
168162
-H 'Content-Type: application/json' \
163+
-H 'Ocp-Apim-Subscription-Key: {subscriptions key}' \
164+
--header 'Content-Type: application/json' \
165+
--header 'Merchant-Serial-Number: {MSN}'
169166
-d '{
170167
"phoneNumber": {string}
171168
}'
172169
```
173-
-->
170+
171+
`phoneNumber` must be international phone number including contry code. For example: `4512345678`

0 commit comments

Comments
 (0)