paths:
/api:
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- bundles
post:
- description: Create a bundle.
+ summary: Create a bundle.
operationId: bundles_create
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
tags:
- bundles
patch:
- description: Update a bundle (partial).
+ summary: Update a bundle (partial).
operationId: bundles_partial_update
security:
- basicAuth: []
tags:
- bundles
put:
- description: Update a bundle.
+ summary: Update a bundle.
+ description:
+ Update an existing bundle.
+ The bundle must be owned by the currently authenticated user.
operationId: bundles_update
security:
- basicAuth: []
- bundles
/api/covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a cover comment.
+ summary: Show a cover letter comment.
operationId: cover_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a cover comment (partial).
+ summary: Update a cover letter comment (partial).
operationId: cover_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
- comments
/api/events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a patch comment.
+ summary: Show a patch comment.
operationId: patch_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a patch comment (partial).
+ summary: Update a patch comment (partial).
operationId: patch_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []
/api:
{% endif %}
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/{{ version_url}}bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
- bundles
{% if version >= (1, 2) %}
post:
- description: Create a bundle.
+ summary: Create a bundle.
operationId: bundles_create
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
- bundles
{% if version >= (1, 2) %}
patch:
- description: Update a bundle (partial).
+ summary: Update a bundle (partial).
operationId: bundles_partial_update
security:
- basicAuth: []
tags:
- bundles
put:
- description: Update a bundle.
+ summary: Update a bundle.
+ description:
+ Update an existing bundle.
+ The bundle must be owned by the currently authenticated user.
operationId: bundles_update
security:
- basicAuth: []
{% endif %}
/api/{{ version_url }}covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a cover comment.
+ summary: Show a cover letter comment.
operationId: cover_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a cover comment (partial).
+ summary: Update a cover letter comment (partial).
operationId: cover_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
{% endif %}
/api/{{ version_url }}events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/{{ version_url }}patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a patch comment.
+ summary: Show a patch comment.
operationId: patch_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a patch comment (partial).
+ summary: Update a patch comment (partial).
operationId: patch_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/{{ version_url }}people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/{{ version_url }}projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/{{ version_url }}series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/{{ version_url }}users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []
paths:
/api/1.0/:
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/1.0/bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
- bundles
/api/1.0/covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
- comments
/api/1.0/events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/1.0/patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/1.0/people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/1.0/projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/1.0/series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/1.0/users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []
paths:
/api/1.1/:
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/1.1/bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
- bundles
/api/1.1/covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
- comments
/api/1.1/events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/1.1/patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/1.1/people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/1.1/projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/1.1/series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/1.1/users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []
paths:
/api/1.2/:
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/1.2/bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- bundles
post:
- description: Create a bundle.
+ summary: Create a bundle.
operationId: bundles_create
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
tags:
- bundles
patch:
- description: Update a bundle (partial).
+ summary: Update a bundle (partial).
operationId: bundles_partial_update
security:
- basicAuth: []
tags:
- bundles
put:
- description: Update a bundle.
+ summary: Update a bundle.
+ description:
+ Update an existing bundle.
+ The bundle must be owned by the currently authenticated user.
operationId: bundles_update
security:
- basicAuth: []
- bundles
/api/1.2/covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
- comments
/api/1.2/events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/1.2/patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/1.2/people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/1.2/projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/1.2/series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/1.2/users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []
paths:
/api/1.3/:
get:
- description: List API resources.
+ summary: List API resources.
operationId: api_list
parameters: []
responses:
- api
/api/1.3/bundles:
get:
- description: List bundles.
+ summary: List bundles.
operationId: bundles_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- bundles
post:
- description: Create a bundle.
+ summary: Create a bundle.
operationId: bundles_create
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a bundle.
+ summary: Show a bundle.
operationId: bundles_read
responses:
'200':
tags:
- bundles
patch:
- description: Update a bundle (partial).
+ summary: Update a bundle (partial).
operationId: bundles_partial_update
security:
- basicAuth: []
tags:
- bundles
put:
- description: Update a bundle.
+ summary: Update a bundle.
+ description:
+ Update an existing bundle.
+ The bundle must be owned by the currently authenticated user.
operationId: bundles_update
security:
- basicAuth: []
- bundles
/api/1.3/covers:
get:
- description: List cover letters.
+ summary: List cover letters.
operationId: covers_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a cover letter.
+ summary: Show a cover letter.
operationId: covers_read
responses:
'200':
title: ID
type: integer
get:
- description: List comments
+ summary: List cover letter comments
operationId: cover_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a cover comment.
+ summary: Show a cover letter comment.
operationId: cover_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a cover comment (partial).
+ summary: Update a cover letter comment (partial).
operationId: cover_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
- comments
/api/1.3/events:
get:
- description: List events.
+ summary: List events.
operationId: events_list
parameters:
- $ref: '#/components/parameters/Page'
- events
/api/1.3/patches:
get:
- description: List patches.
+ summary: List patches.
operationId: patches_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a patch.
+ summary: Show a patch.
operationId: patches_read
responses:
'200':
tags:
- patches
patch:
- description: Update a patch (partial).
+ summary: Update a patch (partial).
operationId: patches_partial_update
security:
- basicAuth: []
title: ID
type: integer
get:
- description: List comments
+ summary: List comments
operationId: patch_comments_list
parameters:
- $ref: '#/components/parameters/Page'
title: Comment ID
type: integer
get:
- description: Show a patch comment.
+ summary: Show a patch comment.
operationId: patch_comments_read
responses:
'200':
tags:
- comments
patch:
- description: Update a patch comment (partial).
+ summary: Update a patch comment (partial).
operationId: patch_comments_partial_update
requestBody:
$ref: '#/components/requestBodies/Comment'
title: Patch ID
type: integer
get:
- description: List checks.
+ summary: List checks.
operationId: checks_list
parameters:
- $ref: '#/components/parameters/Page'
tags:
- checks
post:
- description: Create a check.
+ summary: Create a check.
operationId: checks_create
security:
- basicAuth: []
title: Check ID
type: integer
get:
- description: Show a check.
+ summary: Show a check.
operationId: checks_read
responses:
'200':
- checks
/api/1.3/people:
get:
- description: List people.
+ summary: List people.
operationId: people_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a person.
+ summary: Show a person.
operationId: people_read
security:
- basicAuth: []
- people
/api/1.3/projects:
get:
- description: List projects.
+ summary: List projects.
operationId: projects_list
parameters:
- $ref: '#/components/parameters/Page'
# TODO: Add regex?
type: string
get:
- description: Show a project.
+ summary: Show a project.
operationId: projects_read
responses:
'200':
tags:
- projects
patch:
- description: Update a project (partial).
+ summary: Update a project (partial).
operationId: projects_partial_update
security:
- basicAuth: []
- projects
/api/1.3/series:
get:
- description: List series.
+ summary: List series.
operationId: series_list
parameters:
- $ref: '#/components/parameters/Page'
title: ID
type: integer
get:
- description: Show a series.
+ summary: Show a series.
operationId: series_read
responses:
'200':
- series
/api/1.3/users:
get:
- description: List users.
+ summary: List users.
operationId: users_list
security:
- basicAuth: []
title: ID
type: integer
get:
- description: Show a user.
+ summary: Show a user.
operationId: users_read
security:
- basicAuth: []
tags:
- users
patch:
- description: Update a user (partial).
+ summary: Update a user (partial).
operationId: users_partial_update
security:
- basicAuth: []