From 668762bd1e1026a501580a7d0a47e77384b31efe Mon Sep 17 00:00:00 2001 From: aitbc Date: Fri, 8 May 2026 21:49:33 +0200 Subject: [PATCH] docs: update port 8000 references to 8011 in payment architecture docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update reference/2_payment-architecture.md: coordinator URL 8000 → 8011 - More documentation files still need port 8000 → 8011 updates --- docs/reference/2_payment-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/2_payment-architecture.md b/docs/reference/2_payment-architecture.md index 27d9ce9e..42cd5430 100644 --- a/docs/reference/2_payment-architecture.md +++ b/docs/reference/2_payment-architecture.md @@ -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"}' ```