Files
api-specs/idn/beta/paths/identity-team.yaml
2022-09-02 10:59:29 -04:00

37 lines
1.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

get:
operationId: getTeamSummary
tags:
- Identities
summary: Get team summary by identityId
description: >-
This returns reference to a given identitys manager, and the count of Identities that are managed by the provided identity.
parameters:
- in: path
name: identityId
description: >-
The ID of the identity to build the team summary
required: true
example: 2c9180857893f1290178944561990364
schema:
type: string
responses:
'200':
description: Returns reference to a given identitys manager, and the count of Identities that are managed by the provided identity
content:
application/json:
schema:
type: object
$ref: '../schemas/TeamSummaryDto.yaml'
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'404':
$ref: '../../v3/responses/404.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'