Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions services/external-actor-gateway-service/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,12 @@ components:
application/json:
schema:
$ref: "#/components/schemas/GetAccount"
GetLinkResponse:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/GetLink"
GetPersonResponse:
description: Successful operation
content:
Expand Down Expand Up @@ -3419,11 +3425,7 @@ paths:
operationId: getAudienceLink
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/GetLink"
$ref: "#/components/responses/GetLinkResponse"
summary: Get audience link
tags:
- Audiences
Expand Down Expand Up @@ -3606,6 +3608,19 @@ paths:
- $ref: "#/components/parameters/VersionIdPath"
requestBody:
$ref: "#/components/requestBodies/VersionsBody"
/v0/pages/{page_id}/link:
get:
description: Generate a shareable link for a page. Fails if the page version is not yet published.
operationId: getPageLink
responses:
"200":
$ref: "#/components/responses/GetLinkResponse"
summary: Get page link
tags:
- Pages
parameters:
- $ref: "#/components/parameters/TenantDomainIdQuery"
- $ref: "#/components/parameters/PageIdPath"
/v0/pages/{page_id}/restore:
post:
description: Restore an archived page.
Expand Down
Loading