Cicle API
Cicle
App
Contact
  1. Card
  • Getting Started
    • Introduction
    • Authentication
    • Managing API Keys
    • Rate Limiting
    • Error Codes
  • Companies
    • Overview
    • Get Companies
      GET
  • Teams
    • Overview
    • Get Current Teams
      GET
  • Boards
    • Overview
    • Get Board with Lists and Cards
      GET
    • Get Board with Lists
      GET
  • Lists
    • Overview
    • Get All Lists by Company and Team
      GET
  • Cards
    • Overview
    • Managing Cards
    • Labels And Members
    • Checklists
    • Comments And Discussions
    • Card Members
      • Toggle Multiple Members
    • Card Labels
      • Toggle Multiple Labels
    • Card Cheers
      • Create Cheer on Card
      • Delete Cheer from Card
    • Card Comments
      • Create Comment
      • Get Card Comments
      • Update Comment on Card
      • Delete Comment from Card
    • Comment Cheers
      • Create Cheer on Comment
      • Delete Cheer from Comment
    • Card Discussions
      • Create Discussion on Comment
      • Update Discussion
      • Delete Discussion
    • Discussion Cheers
      • Create Cheer on Discussion
      • Delete Cheer from Discussion
    • Card Attachments
      • Delete Attachment from Card
      • Update Attachment Name on Card
    • Checklists
      • Checklist Items
        • Checklist Item Attachments
          • Delete Attachment from Checklist Item
          • Update Attachment Name on Checklist Item
        • Get Checklist Items
        • Create Checklist Item
        • Get Checklist Item by ID
        • Update Checklist Item Name
        • Update Checklist Item Date
        • Toggle Checklist Item Complete Status
        • Reorder Checklist Item
        • Toggle Members on Checklist Item
        • Copy Checklist Item
        • Delete Checklist Item
      • Get Checklists
      • Create Checklist
      • Update Checklist Name
      • Reorder Checklist Position
      • Copy Checklist
      • Delete Checklist
    • Card Metadata
      • Get Card Company and Team
    • Create Card
    • Copy Card
    • Archive Cards
    • Archive Cards Multi Team
    • Copy Cards Multi Team
    • Move Cards Multi Team
    • Update Cards Multi Team
    • Reorder Card Position
    • Update Card
    • Archive Card
    • Unarchive Card
    • Get Card Details
    • Get List Card
  • My Tasks
    • List All My Tasks
    • List All My Tasks In List
  • Schemas
    • Card
      • Card
      • Checklist
      • Discussion
      • Checklist Item
      • Attachment
      • Cheer
      • Comment
      • Label
      • List
      • Company
      • Team
  1. Card

Company

Represents a company/organization. Top-level entity that contains teams and projects.

{
    "_id": "string",
    "name": "string",
    "desc": "string",
    "logo": "string",
    "creator": "string",
    "admins": [
        "string"
    ],
    "managers": [
        "string"
    ],
    "spvs": [
        "string"
    ],
    "members": [
        {
            "_id": "string",
            "fullName": "string",
            "photoUrl": "string",
            "status": "string",
            "bio": "string"
        }
    ],
    "teams": [
        {
            "_id": "string",
            "name": "string",
            "desc": "string",
            "company": "string",
            "type": "string",
            "members": [
                {
                    "_id": "string",
                    "photoUrl": "string"
                }
            ],
            "boards": [
                "string"
            ],
            "archived": {
                "status": true
            },
            "createdAt": "string",
            "updatedAt": "string"
        }
    ],
    "archived": {
        "status": true,
        "archivedAt": "string"
    },
    "createdAt": "string",
    "updatedAt": "string"
}
Built with