POST /projects/{projectId}/cards/{cardId}/metadata

Add Metadata

Path parameters

  • projectId string Required

    The Project ID of the card

  • cardId string Required

    The ID of the card

Body

  • metadata string Required

    The metadata to add to the card

    Maximum length is 50.

Responses

  • 200
    Hide response attribute Show response attribute object
    • message string Required

      The success message

POST /projects/{projectId}/cards/{cardId}/metadata
curl \
 --request POST 'https://tadatodo.com/api/projects/Pae77f34bbf9/cards/Cae77f34bbf9/metadata' \
 --header "X-API-Key: $API_KEY" \
 --data '{"metadata":"my metadata"}'
Request examples
{
  "metadata": "my metadata"
}
Response examples (200)
{
  "message": "success"
}