API documentation update - Part 1 (#2366)

This commit is contained in:
Shuchang Zheng
2025-05-16 16:11:22 -07:00
committed by GitHub
parent cfa9140c58
commit 343894d7a4
3 changed files with 83 additions and 29 deletions

View File

@@ -24,7 +24,10 @@ ALGORITHM = "HS256"
async def get_current_org(
x_api_key: Annotated[str | None, Header()] = None,
x_api_key: Annotated[
str | None,
Header(None, description='Skyvern API key for your organization. You can find it in Skyvern "Settings" page.'),
] = None,
authorization: Annotated[str | None, Header()] = None,
) -> Organization:
if not x_api_key and not authorization: