From ae87e80298d0a562c606a5b2540814f830c4e2b6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 2 Dec 2024 08:48:40 +0000 Subject: [PATCH] update api/manager.yaml --- api/manager.yaml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/api/manager.yaml b/api/manager.yaml index 138e9f4..b77e881 100644 --- a/api/manager.yaml +++ b/api/manager.yaml @@ -534,7 +534,8 @@ paths: - Data URI /data/authors: post: - operationId: create + description: Creates the structured data for an author. + operationId: createAuthor requestBody: content: application/json: @@ -542,11 +543,14 @@ paths: $ref: '#/components/schemas/AuthorRequest' required: true responses: - "200": + "201": content: {} - description: OK + description: Success + "401": + description: Authentication Failure security: - ApiKey: [] + summary: Create tags: - Authors /ext/google/searchconsole/searches: @@ -1920,11 +1924,13 @@ components: \ language is supported." AuthorRequest: type: object + description: The author request. properties: - language: - type: string name: type: string + description: "The name of the author, e.g. `John Smith`." + required: + - name BotifyCrawlImportRequest: type: object description: The Botify Crawl Import request