docs: update port 8000 references to 8011 in payment architecture docs

- Update reference/2_payment-architecture.md: coordinator URL 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
This commit is contained in:
aitbc
2026-05-08 21:49:33 +02:00
parent 7321242b75
commit 668762bd1e

View File

@@ -97,7 +97,7 @@ CREATE TABLE job_payments (
### 1. Client Creates Job
```bash
curl -X POST http://localhost:18000/v1/jobs \
curl -X POST http://localhost:8011/v1/jobs \
-H "X-Api-Key: ${CLIENT_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
@@ -123,7 +123,7 @@ curl -X POST http://localhost:18000/v1/jobs \
### 3. Job Completion & Payment Release
```bash
curl -X POST http://localhost:18000/v1/payments/pay456/release \
curl -X POST http://localhost:8011/v1/payments/pay456/release \
-H "X-Api-Key: ${CLIENT_API_KEY}" \
-d '{"job_id": "abc123", "reason": "Job completed"}'
```