Skip to main content

Get Task

GET /card/{id}
Retrieves a specific task by ID.

Parameters

  • id (path) - Task ID

Response

{
  "data": {
    "id": "mzxssfsdf60",
    "title": "Niacinamide benefits - Hishaam",
    "description": "<p class=\"editor-paragraph\" dir=\"ltr\" style=\"text-align: start;\"><span>Instagram post size</span><br><span>continuing the blue color scheme</span><br><span>post</span></p><p class=\"editor-paragraph\" dir=\"ltr\"><span>I attached some photos if inspiration for the background of the post</span></p>",
    "request_type": null,
    "product_type": "graphics",
    "dimensions": "Sub Category Name: Instagram\nValue: Square Images 1080 x 1080 pixels",
    "created_by": null,
    "labels": "Revision",
    "tags": "",
    "text_copy": "<p class=\"editor-paragraph\" dir=\"ltr\" style=\"text-align: start;\"><span>1st post:</span><br><span>Niacinamide also known as Vitamin B3</span><br><span>benefits: helps to even, plump and firm as well as minimize redness due to dryness.</span></p><p class=\"editor-paragraph\" dir=\"ltr\" style=\"text-align: start;\"><span>2nd post:</span><br><span>Glycerol also known as Glycerin</span><br><span>benefits: softens and plumps as well as lock in moisture and relieves dryness</span></p><p class=\"editor-paragraph\" dir=\"ltr\" style=\"text-align: start;\"><span>3rd post:</span><br><span>Panthenol also known as Pro Vitamin B5</span><br><span>benefits: deeply hydrates as well as helps restore skins barrier</span></p>",
    "file_formats": "PNG",
    "software": "Photoshop (PSD)",
    "status": {
      "id": "okrsxk6",
      "name": "Graphics In Progress",
      "color": "#3f4c5c"
    },
    "due_date": null,
    "created_at": "26-Jan-2024 02:53 PM",
    "updated_at": "03-Feb-2025 06:26 PM",
    "files": [
      {
        "id": "m4y12asfd4",
        "name": "Screenshot_(4).png",
        "ext": "png",
        "urls": {
          "full": "https://kimp360-files.s3-accelerate.amazonaws.com/e47736fb-c02224-4eff-8c36-05e6192ba57b.png",
          "large": "https://storage-360.b-cdn.net/e47736fb-c084-4eff-8c2236-05e6192ba57b.png?class=",
          "medium": "https://storage-360.b-cdn.net/e47736fb-c084-4eff-822c36-05e6192ba57b.png?class=",
          "small": "https://storage-360.b-cdn.net/e47736fb-c084-4eff-8c2236-05e6192ba57b.png?class="
        },
        "type": "reference"
      }
    ],
    "brand": null
  }
}

Create Task

POST /card
Creates a new task.

Request Body

{
  "data": {
    "title": "string",
    "description": "string",
    "typeId": "string",
    "isDraft": "boolean (optional)",
    "product": "Graphics" | "Video" | "Graphics Video" | "Canva Graphics" | "Canva Plus",
    "dimension": "string",
    "textCopy": "string (optional)",
    "software": "string",
    "fileFormats": "string",
    "brandId": "string (optional)",
    "textCopyFiles": "array (optional)",
    "additionalFiles": "array (optional)",
    "additionalFilesNote": "string (optional)",
    "referenceFiles": "array (optional)",
    "referenceFilesNote": "string (optional)",
  }
}