mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
24 lines
459 B
YAML
24 lines
459 B
YAML
|
|
provider:
|
||
|
|
name: fleetdm_teams
|
||
|
|
schema_ref: '#/components/schemas/Team'
|
||
|
|
|
||
|
|
resources:
|
||
|
|
team:
|
||
|
|
create:
|
||
|
|
path: /api/v1/fleet/teams
|
||
|
|
method: POST
|
||
|
|
read:
|
||
|
|
path: /api/v1/fleet/teams/{id}
|
||
|
|
method: GET
|
||
|
|
update:
|
||
|
|
path: /api/v1/fleet/teams/{id}
|
||
|
|
method: PUT
|
||
|
|
delete:
|
||
|
|
path: /api/v1/fleet/teams/{id}
|
||
|
|
method: DELETE
|
||
|
|
schema:
|
||
|
|
attributes:
|
||
|
|
overrides:
|
||
|
|
name:
|
||
|
|
description: Team name
|