@@ -1988,10 +1988,10 @@ services:
19881988` ` ` bash
19891989# Only management endpoints are available
19901990curl https://admin-api.example.com/obp/v5.1.0/management/consumers
1991- # ✓ Success
1991+ # [SUCCESS]
19921992
19931993curl https://admin-api.example.com/obp/v5.1.0/banks
1994- # ✗ 404 Not Found - Endpoint not enabled on this instance
1994+ # [FAIL] 404 Not Found - Endpoint not enabled on this instance
19951995```
19961996
19971997#### 5.4.4 Deployment Scenario: Berlin Group Instance
@@ -2108,10 +2108,10 @@ services:
21082108` ` ` bash
21092109# Berlin Group endpoints are available
21102110curl https://psd2-api.example.com/berlin-group/v1.3/accounts
2111- # ✓ Success
2111+ # [SUCCESS]
21122112
21132113curl https://psd2-api.example.com/obp/v5.1.0/banks
2114- # ✗ 404 Not Found - OBP versions not enabled on this instance
2114+ # [FAIL] 404 Not Found - OBP versions not enabled on this instance
21152115```
21162116
21172117#### 5.4.5 Multi-Instance Architecture
@@ -2263,15 +2263,15 @@ VERSION="v5.1.0"
22632263
22642264echo " Testing Management Endpoints..."
22652265curl -s " ${API_HOST} /obp/${VERSION} /management/consumers" | \
2266- jq -r ' .code // "✓ Enabled"'
2266+ jq -r ' .code // "[OK] Enabled"'
22672267
22682268echo " Testing Public Endpoints..."
22692269curl -s " ${API_HOST} /obp/${VERSION} /banks" | \
2270- jq -r ' .code // "✓ Enabled"'
2270+ jq -r ' .code // "[OK] Enabled"'
22712271
22722272echo " Testing Berlin Group Endpoints..."
22732273curl -s " ${API_HOST} /berlin-group/v1.3/accounts" | \
2274- jq -r ' .code // "✓ Enabled"'
2274+ jq -r ' .code // "[OK] Enabled"'
22752275```
22762276
22772277#### 5.4.7 Best Practices
0 commit comments