From a8840e87e947ce59f45e65b339a22c024f3df18b Mon Sep 17 00:00:00 2001 From: SoulPancake Date: Mon, 24 Aug 2026 14:40:21 +0530 Subject: [PATCH] docs: fix README TOC order to match section order The TOC listed Retries before Calling Other Endpoints, but the sections in the body appear in the opposite order (and all sibling SDKs list Calling Other Endpoints first). Reorder the two TOC entries and normalize spacing before the Calling Other Endpoints heading. No content removed. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 78f6dc8..af106ca 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ This is an autogenerated python SDK for OpenFGA. It provides a wrapper around th - [Assertions](#assertions) - [Read Assertions](#read-assertions) - [Write Assertions](#write-assertions) - - [Retries](#retries) - [Calling Other Endpoints](#calling-other-endpoints) + - [Retries](#retries) - [API Endpoints](#api-endpoints) - [Models](#models) - [OpenTelemetry](#opentelemetry) @@ -1290,6 +1290,7 @@ body = [ClientAssertion( response = await fga_client.write_assertions(body, options) ``` + ### Calling Other Endpoints In certain cases you may want to call other APIs not yet wrapped by the SDK. You can do so by using the `execute_api_request` method available on the `OpenFgaClient`. It allows you to make raw HTTP calls to any OpenFGA endpoint by specifying the HTTP method, path, body, query parameters, and path parameters, while still honoring the client configuration (authentication, telemetry, retries, and error handling).