POST /projects/{projectId}/columns/{columnId}/cards

Create

Path parameters

  • projectId string Required

    The Project ID of the card

  • columnId string Required

    The column ID of the card

Body

  • metadata string

    The metadata of the card

    Maximum length is 50.

  • name string Required

    The name of the card

    Maximum length is 25000.

  • url string

    A URL associated with the creation of this card

    Maximum length is 200.

Responses

  • 200
    Hide response attributes Show response attributes object
    • columns array[object]
      Hide columns attributes Show columns attributes object
      • id string
      • name string
    • createdFlair string
    • id string
    • metadata array[object]
      Hide metadata attributes Show metadata attributes object
      • id string
      • value string
    • name string
    • url string
POST /projects/{projectId}/columns/{columnId}/cards
curl \
 --request POST 'https://tadatodo.com/api/projects/Pae77f34bbf9/columns/Coe77f34bbf9/cards' \
 --header "X-API-Key: $API_KEY" \
 --data '{"metadata":"my metadata","name":"my card","url":"http://example.com"}'
Request examples
{
  "metadata": "my metadata",
  "name": "my card",
  "url": "http://example.com"
}
Response examples (200)
{
  "columns": [
    {
      "id": "string",
      "name": "string"
    }
  ],
  "createdFlair": "string",
  "id": "string",
  "metadata": [
    {
      "id": "string",
      "value": "string"
    }
  ],
  "name": "string",
  "url": "string"
}