mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-07 12:27:49 +00:00
32 lines
878 B
YAML
32 lines
878 B
YAML
get:
|
|
summary: Find user-manager relationship by id
|
|
operationId: getUserManager
|
|
description: Info for a specific user-manager relationship
|
|
tags:
|
|
- user managers
|
|
parameters:
|
|
- $ref: "../parameters/path/id.yaml"
|
|
responses:
|
|
'200':
|
|
$ref: "../responses/UserManager.yaml"
|
|
'400':
|
|
$ref: "../responses/400.yaml"
|
|
'500':
|
|
$ref: "../responses/500.yaml"
|
|
patch:
|
|
summary: Update a user-manager relationship by id
|
|
operationId: patchUserManager
|
|
description: Update a user-manager relationship by id
|
|
tags:
|
|
- user managers
|
|
requestBody:
|
|
$ref: "../requestBodies/PATCH/UserManager.yaml"
|
|
parameters:
|
|
- $ref: "../parameters/path/id.yaml"
|
|
responses:
|
|
'200':
|
|
$ref: "../responses/UserManager.yaml"
|
|
'400':
|
|
$ref: "../responses/400.yaml"
|
|
'500':
|
|
$ref: "../responses/500.yaml" |