Skip to content

Commit f163120

Browse files
committed
docfix: removing tick and cross unicode chars
1 parent 960c3ff commit f163120

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

obp-api/src/main/resources/docs/introductory_system_documentation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,10 +1988,10 @@ services:
19881988
```bash
19891989
# Only management endpoints are available
19901990
curl https://admin-api.example.com/obp/v5.1.0/management/consumers
1991-
# ✓ Success
1991+
# [SUCCESS]
19921992

19931993
curl 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
21102110
curl https://psd2-api.example.com/berlin-group/v1.3/accounts
2111-
# ✓ Success
2111+
# [SUCCESS]
21122112

21132113
curl 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

22642264
echo "Testing Management Endpoints..."
22652265
curl -s "${API_HOST}/obp/${VERSION}/management/consumers" | \
2266-
jq -r '.code // " Enabled"'
2266+
jq -r '.code // "[OK] Enabled"'
22672267

22682268
echo "Testing Public Endpoints..."
22692269
curl -s "${API_HOST}/obp/${VERSION}/banks" | \
2270-
jq -r '.code // " Enabled"'
2270+
jq -r '.code // "[OK] Enabled"'
22712271

22722272
echo "Testing Berlin Group Endpoints..."
22732273
curl -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

Comments
 (0)