Create Task
curl --request POST \
--url https://api.kimp360.com/card \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"title": "<string>",
"description": "<string>",
"typeId": "<string>",
"dimension": "<string>",
"software": "<string>",
"fileFormats": "<string>"
}
'import requests
url = "https://api.kimp360.com/card"
payload = {
"title": "<string>",
"description": "<string>",
"typeId": "<string>",
"dimension": "<string>",
"software": "<string>",
"fileFormats": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
typeId: '<string>',
dimension: '<string>',
software: '<string>',
fileFormats: '<string>'
})
};
fetch('https://api.kimp360.com/card', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"product_type": "<string>",
"dimensions": "<string>",
"labels": "<string>",
"tags": "<string>",
"text_copy": "<string>",
"file_formats": "<string>",
"software": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"request_type": "<string>",
"created_by": "<string>",
"due_date": "<string>",
"status": {
"id": "<string>",
"name": "<string>",
"color": "<string>"
},
"files": [
{
"id": "<string>",
"name": "<string>",
"ext": "<string>",
"urls": {
"full": "<string>",
"large": "<string>",
"medium": "<string>",
"small": "<string>"
},
"type": "<string>"
}
],
"brand": "<string>"
}Resources
Create Task
Creates a new task.
POST
/
card
Create Task
curl --request POST \
--url https://api.kimp360.com/card \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"title": "<string>",
"description": "<string>",
"typeId": "<string>",
"dimension": "<string>",
"software": "<string>",
"fileFormats": "<string>"
}
'import requests
url = "https://api.kimp360.com/card"
payload = {
"title": "<string>",
"description": "<string>",
"typeId": "<string>",
"dimension": "<string>",
"software": "<string>",
"fileFormats": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
title: '<string>',
description: '<string>',
typeId: '<string>',
dimension: '<string>',
software: '<string>',
fileFormats: '<string>'
})
};
fetch('https://api.kimp360.com/card', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"product_type": "<string>",
"dimensions": "<string>",
"labels": "<string>",
"tags": "<string>",
"text_copy": "<string>",
"file_formats": "<string>",
"software": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"request_type": "<string>",
"created_by": "<string>",
"due_date": "<string>",
"status": {
"id": "<string>",
"name": "<string>",
"color": "<string>"
},
"files": [
{
"id": "<string>",
"name": "<string>",
"ext": "<string>",
"urls": {
"full": "<string>",
"large": "<string>",
"medium": "<string>",
"small": "<string>"
},
"type": "<string>"
}
],
"brand": "<string>"
}Create Card
POST /api/card HTTP/1.1
Content-Type: application/json
| Field | Type | Description |
|---|---|---|
product | string | Graphics, Video, Development, Canva Graphics, Canva Video, Canva Plus, Graphics + Video |
title | string | Card title |
typeId | string | Request type ID |
description | string | Task description |
brandId | string | Brand ID |
tagIds | string | Comma-separated tag IDs |
isDraft | boolean | Save as draft |
isDevelopmentTask | boolean | Switch to dev card flow |
designSource | string | kimp or provided |
dimension | string | Dimensions |
textCopy | string | Text copy content |
fileFormats | string | Required file formats |
software | string | Software to use |
additionalFiles | string | Comma-separated URLs |
referenceFiles | string | Comma-separated URLs |
textCopyFiles | string | Comma-separated URLs |
linkedDesignTask | array | Array of linked card IDs |
providedDesignLink | string | Link to provided design |
accessInfo | string | Access credentials/info |
functionalityRequirements | string | Dev task requirements |
{
"id": "string",
"title": "string",
"status": { "id": "string", "name": "string" }
}
Authorizations
Body
application/json
Available options:
Graphics, Video, Canva Graphics, Canva Plus Response
200 - application/json
Created task object
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?