POST
/
cards
curl --request POST \
  --url https://kanbn.com/api/v1/cards \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "description": "<string>",
  "listPublicId": "<string>",
  "labelPublicIds": [
    "<string>"
  ],
  "memberPublicIds": [
    "<string>"
  ],
  "position": "start"
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
title
string
required
Minimum length: 1
description
string
required
Maximum length: 10000
listPublicId
string
required
Minimum length: 12
labelPublicIds
string[]
required
memberPublicIds
string[]
required
position
enum<string>
required
Available options:
start,
end

Response

200
application/json
Successful response

The response is of type any.