Teams

A team represents a group of people responsible for delivering and supporting work in Atono. Each team has its own backlog, workflow, and membership, and optionally a connected Slack channel for communication.


Team attributes

FieldTypeDescription
namestringThe name of the team.
descriptionstringThe description of the team.
createdAtdatetime (ISO 8601)The date and time the team was created.
updatedAtdatetime (ISO 8601)The date and time the team was last updated.
isPublicbooleanIndicates whether access to the team’s backlog is public (true) or private (false).
backlogManagementByOwnersbooleanIndicates whether backlog management is restricted to users assigned as backlog owners.

Team relationships

RelationshipTypeDescription
membersarray of usersThe users who are members of the team.
channelobject(team channel)The Slack channel or Atono channel linked to the team.

Example JSON for team

{
  "data": {
    "type": "team",
    "id": "0cd0c8b8-734f-4c17-a07c-e993b04af480",
    "attributes": {
      "name": "Synth Support Squad",
      "description": "Engineering team responsible for maintaining, optimizing, and enhancing our virtual synthesizer. They ensure smooth operation and implement new features while providing top-notch user support...",
      "createdAt": "2024-07-18T22:49:52Z",
      "updatedAt": "2025-02-07T05:52:49Z",
      "isPublic": true,
      "backlogManagementByOwners": false
    },
    "relationships": {
      "members": {
        "links": {
          "self": "/api/v1/teams/0cd0c8b8-734f-4c17-a07c-e993b04af480/relationships/members"
        },
        "data": [
          {
            "type": "user",
            "id": "2edaca9f-b07e-4af1-b425-1f0b6bf69c0a"
          },
          {
            "type": "user",
            "id": "bf60edfc-be09-4fea-8597-33c5b333ce05"
          },
          {
            "type": "user",
            "id": "fe4641d7-c72a-4165-904d-89b2ded40916"
          },
          {
            "type": "user",
            "id": "a0215837-3d34-4e0b-9796-2ec4d8aa9573"
          }
        ],
        "meta": {
          "count": 4
        }
      },
      "channel": {
        "links": {
          "related": "/api/team_channels/34c93a45-f6e0-4c95-93f5-187e6db4c50e"
        },
        "data": {
          "type": "team_channel",
          "id": "34c93a45-f6e0-4c95-93f5-187e6db4c50e"
        }
      }
    }
  },
  "included": [
    {
      "type": "user",
      "id": "b64dcb9e-aa2c-4331-8381-ebd3816eb178",
      "attributes": {
        "createdAt": "2024-12-05T19:24:25Z",
        "updatedAt": "2024-12-05T19:25:12Z",
        "invitedAt": "2025-01-23T22:58:21Z",
        "email": "[email protected]",
        "fullName": "Melody Mixer",
        "deleted": false
      }
    },
    {
      "type": "user",
      "id": "bf60edfc-be09-4fea-8597-33c5b333ce05",
      "attributes": {
        "createdAt": "2024-04-29T16:45:22Z",
        "updatedAt": "2025-05-08T20:52:56Z",
        "invitedAt": "2025-01-23T22:58:21Z",
        "email": "[email protected]",
        "fullName": "Max Harmon",
        "deleted": false
      }
    },
    {
      "type": "user",
      "id": "fe4641d7-c72a-4165-904d-89b2ded40916",
      "attributes": {
        "createdAt": "2024-08-10T00:45:55Z",
        "updatedAt": "2024-08-10T00:46:58Z",
        "invitedAt": "2025-01-23T22:58:21Z",
        "email": "[email protected]",
        "fullName": "Oliver Resonance",
        "deleted": false
      }
    },
    {
      "type": "user",
      "id": "2edaca9f-b07e-4af1-b425-1f0b6bf69c0a",
      "attributes": {
        "createdAt": "2024-08-10T00:45:56Z",
        "updatedAt": "2025-06-10T23:34:40Z",
        "invitedAt": "2025-01-23T22:58:21Z",
        "email": "[email protected]",
        "fullName": "Ella Rhythm",
        "deleted": false
      }
    },
    {
      "type": "user",
      "id": "a0215837-3d34-4e0b-9796-2ec4d8aa9573",
      "attributes": {
        "createdAt": "2024-08-12T15:37:05Z",
        "updatedAt": "2025-06-03T22:03:01Z",
        "invitedAt": "2025-01-23T22:58:21Z",
        "email": "[email protected]",
        "fullName": "Mary McBride",
        "deleted": false
      }
    }
  ],
  "links": {
    "self": "/api/v1/teams/0cd0c8b8-734f-4c17-a07c-e993b04af480"
  }
}